public class boolean[][]
extends Object
GDK enhancements for boolean[][].
| Methods inherited from class | Name |
|---|---|
class Object |
addShutdownHook, any, any, asBoolean, asType, collect, collect, collect, dump, each, eachMatch, eachMatch, eachWithIndex, every, every, find, find, findAll, findAll, findIndexOf, findIndexOf, findIndexValues, findIndexValues, findLastIndexOf, findLastIndexOf, findResult, findResult, findResult, findResult, getAt, getMetaClass, getMetaPropertyValues, getProperties, grep, grep, hasProperty, identity, inject, inject, inspect, invokeMethod, is, isCase, isNotCase, iterator, metaClass, print, print, printf, printf, println, println, println, putAt, respondsTo, respondsTo, setMetaClass, sleep, sleep, split, sprintf, sprintf, stream, tap, toString, use, use, use, with, with, withCloseable, withCloseable, withMethodClosure, withStream, withStream, withTraits |
Flattens a 2D array into a new collection. The items are copied row by row.
Example usage:
boolean[][] array = [[true, false], [true, false]]
assert array.flatten() == [true, false, true, false]
A transpose method for 2D boolean arrays.
Example usage:
boolean[][] array = [[false, false], [true, true]]
boolean[][] expected = [[false, true], [false, true]]
def result = array.transpose()
assert result == expected
assert array.class.componentType == result.class.componentType